home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / util / boot / AmyShutDown_sr.lha / ShutDownGUI.h < prev    next >
C/C++ Source or Header  |  1997-06-05  |  331b  |  24 lines

  1. #ifndef GUI_FILE_H
  2. #define GUI_FILE_H
  3.  
  4. /* Types */
  5. #include <exec/types.h>
  6. #include "ShutDown_cat.h"
  7.  
  8. struct ObjApp
  9. {
  10.     APTR    App;
  11.     APTR    winChoose;
  12.     APTR    radOptions;
  13.     APTR    butOk;
  14.     APTR    butCancel;
  15.     char *    radOptionsContent[3];
  16. };
  17.  
  18. #define OK 1
  19.  
  20. extern struct ObjApp * CreateApp(void);
  21. extern void DisposeApp(struct ObjApp *);
  22.  
  23. #endif
  24.